{% extends 'base.html' %} {% load static %} {% block title %}Мои бронирования - МОЙ НЕ САМ{% endblock %} {% block content %}
| № | Стол | Дата и время | Гости | Статус | Действия |
|---|---|---|---|---|---|
| #{{ reservation.id }} |
Стол #{{ reservation.table.number }}
{{ reservation.table.get_location_display }} |
{{ reservation.start_time|date:"d.m.Y" }} {{ reservation.start_time|date:"H:i" }} - {{ reservation.end_time|date:"H:i" }} |
{{ reservation.guests_count }} чел. | {% if reservation.status == 'pending' %} Ожидает подтверждения {% elif reservation.status == 'confirmed' %} Подтверждено {% elif reservation.status == 'completed' %} Завершено {% elif reservation.status == 'cancelled' %} Отменено {% endif %} | {% if reservation.status == 'pending' or reservation.status == 'confirmed' %} Отменить {% endif %} |
У вас пока нет бронирований. Забронировать стол.